DataSource for Entity Framework in WPF
C1.LiveLinq.Listeners Namespace / PropertyChangeListener<T> Class / StartListening Method
The object to listen to.

In This Topic
    StartListening Method
    In This Topic
    Start listening to property changes in a particular object.
    Syntax
    'Declaration
     
    Public MustOverride Sub StartListening( _
       ByVal item As T _
    ) 
    public abstract void StartListening( 
       T item
    )

    Parameters

    item
    The object to listen to.
    Remarks
    LiveLinq calls this method when a new object is added to a collection, so LiveLinq needs to be notified of changes to property values in that object.
    See Also